-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve Upper Bound issues, update Groovy #133
Conversation
This pull request originates from a CloudBees employee. At CloudBees, we require that all pull requests be reviewed by other CloudBees employees before we seek to have the change accepted. If you want to learn more about our process please see this explanation. |
@@ -4,7 +4,7 @@ | |||
<parent> | |||
<groupId>org.kohsuke</groupId> | |||
<artifactId>pom</artifactId> | |||
<version>14</version> | |||
<version>19</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally we should start migrating it to https://github.com/jenkinsci/pom.
IIUC there is no other things excepting Plugin site release and code signing there. WDYT @jglick ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure. Technically this is a non-Jenkins component.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's something we could also fix. Stapler is a critical part of Jenkins && it's not extremely popular elsewhere, so moving it && integrating common Jenkins QA/review flow would not hurt. It's something we were discussing multiple times, but maybe it belongs to the ML now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Basically that would mean not releasing it to Central any more. Fine with me, but needs some discussion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds OK.
@@ -44,12 +44,22 @@ | |||
<dependency> | |||
<groupId>commons-beanutils</groupId> | |||
<artifactId>commons-beanutils</artifactId> | |||
<version>1.7.0</version> | |||
<version>1.8.0</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these aligned with jenkins-core
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Jenkins core is at 1.8.3. Can bump it even more
Oops:
|
Works on my machine (c). No sure what happens there |
Reproducible locally:
You just need to update |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As mentioned.
@jglick ptal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you track down the cause of
java.lang.NullPointerException
at org.kohsuke.stapler.DataBindingTest.testScalarToArray(DataBindingTest.java:142)
? Unclear if this could be a regression.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unclear if this could be a regression.
It is—reproducible, caused by the commons-beanutils
upgrade. Since core has been overriding this version with 1.8.3 for years, presumably this databinding scenario does not work in real life either.
I am going to study this a bit.
@@ -4,7 +4,7 @@ | |||
<parent> | |||
<groupId>org.kohsuke</groupId> | |||
<artifactId>pom</artifactId> | |||
<version>14</version> | |||
<version>19</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Basically that would mean not releasing it to Central any more. Fine with me, but needs some discussion.
It seems |
All versions are compatible with the Jenkins core.
@reviewbybees @jglick